home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
DragClick
/
Sources
/
GestaltStuff.cpp
< prev
next >
Wrap
Text File
|
1996-06-21
|
563b
|
22 lines
// =============================================================================
//
// InitUtils.cp
//
// Author: Greg Friedman
// Date: MacHack '96
//
// Do whatever you want with this source. Don't blame me if it doesn't work.
//
// =============================================================================
#ifndef __GESTALTSTUFF__
#include "GestaltStuff.h"
#endif
Boolean gHasProcessMgr = FALSE;
Boolean HasGestaltAttribute(OSType attr, short itsBit)
{
long response;
return (Gestalt(attr, &response) == noErr) && (((response >> itsBit) & 1) != 0);
}